home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / datasave.zip / DS.BAT < prev    next >
DOS Batch File  |  1993-01-26  |  287b  |  16 lines

  1. @echo off
  2. @if "%1"=="" goto none
  3. @if not exist %1 goto error
  4. pkzip -p -a c:\trashcan\datasave.mcs %1 -x*.tmp -x*.swp > nul
  5. erase %1 > nul
  6. @goto end
  7.  
  8. :none
  9. @echo Error ++++++++ No File has been selected.
  10. @goto end
  11.  
  12. :error
  13. @echo Error ++++++++ File %1 does not exist.
  14.  
  15. :end
  16.